/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    background-color: #0F252D;
}

/* Header Styles */
.header {
    width: 100%;
    padding: 2rem 3% 0.5rem;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-right: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: white;
    opacity: 0.8;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #007bff;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-image: url(/policies/images/DesktopHeroBanner_2x__5_.png);
    color: white;
    border-radius: 10px;
    margin: 1rem auto;
    padding: 2rem 2rem;
    max-width: 1200px;
    width: 95%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}



/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile and Tablet Responsive */
@media (max-width: 900px) {
    .header {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -300px;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.85);
        padding: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        visibility: visible;
        backdrop-filter: blur(8px);
    }

    .nav-menu.active {
        right: 20px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        height: 100%;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 1rem;
        text-align: left;
        color: #333;
        opacity: 1;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }

    .logo {
        margin-right: auto;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        color: #007bff;
    }

    .hero h1 {
        font-size: 2.5rem;
    }


}

